home *** CD-ROM | disk | FTP | other *** search
/ Aminet 40 / Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso / Aminet / dev / lang / Python20_Src.lha / Python20_source / Python / getplatform.c < prev    next >
Encoding:
C/C++ Source or Header  |  2000-10-26  |  130 b   |  13 lines

  1.  
  2. #include "Python.h"
  3.  
  4. #ifndef PLATFORM
  5. #define PLATFORM "unknown"
  6. #endif
  7.  
  8. const char *
  9. Py_GetPlatform(void)
  10. {
  11.     return PLATFORM;
  12. }
  13.